home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-01-25 | 806 b | 21 lines | [TEXT/ToyS] |
- tell application "FileMaker Pro"
- activate
- show every record of database "Original Database"
- show every record of database "Old Database"
-
- set field "Match" of document "Original Database" to ""
- set orgList to field "Full Name" of document "Original Database"
- set oldList to field "Full Name" of document "Old Database"
- set matchList to field "Match" of document "Original Database"
-
- repeat with i from 1 to (count of orgList)
- if oldList contains item i of orgList then
- set item i of matchList to "Match"
- end if
- end repeat
-
- set field "Match" of document "Original Database" to matchList
- show (every record of database "Original Database" whose cell "Match" = "Match")
- sort layout 2 of document "Original Database" by field "Last Name"
- show layout 2 of document "Old Database"
- end tell